🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / feature / map / src / commonMain / kotlin / org / meshtastic / feature / map / tiles / TileSources.kt
Displaying Raw • Download
feature/map/src/commonMain/kotlin/org/meshtastic/feature/map/tiles/TileSources.kt renovate/fastlane-2.x-lockfile (056eed64) Text, 1.76 KB
T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.feature.map.tiles
Tff7b72import T7ee787org.jetbrains.compose.resources.StringResource
T8b949e/**
* A raster basemap: XYZ tiles that stand in for the base map itself.
*
* The label is a provider or product name — OpenStreetMap, USGS Topo, Esri Imagery — so it is deliberately not
* translated. Compare [RasterOverlaySource], whose labels describe what the layer shows and therefore are.
*/
Tff7b72data Tff7b72class T56d364RasterBasemapSourceTb4b4b4(Tff7b72val Te6edf3idTb4b4b4: Tffa657StringTb4b4b4, Tff7b72val Te6edf3labelTb4b4b4: Tffa657StringTb4b4b4, Tff7b72val Te6edf3specTb4b4b4: Te6edf3RasterTileSpecTb4b4b4)
T8b949e/** A raster layer composited over whichever basemap is selected. */
Tff7b72data Tff7b72class T56d364RasterOverlaySourceTb4b4b4(
Tff7b72val Te6edf3idTb4b4b4: Tffa657StringTb4b4b4,
Tff7b72val Te6edf3labelTb4b4b4: Te6edf3StringResourceTb4b4b4,
Tff7b72val Te6edf3specTb4b4b4: Te6edf3RasterTileSpecTb4b4b4,
T8b949e/** Set when the tiles encode elevation rather than imagery, which only a renderer with hillshading can use. */
Tff7b72val Te6edf3demEncodingTb4b4b4: Te6edf3DemEncoding? Tff7b72= Tff7b72nullTb4b4b4,
Tb4b4b4)
T8b949e/** How a raster-DEM source packs elevation into its pixels. */
Tff7b72enum Tff7b72class T56d364DemEncoding Tb4b4b4{
T8b949e/** Mapbox Terrain-RGB. */
Te6edf3MAPBOXTb4b4b4,
T8b949e/** Terrarium PNG, which every keyless public DEM source here uses. */
Te6edf3TERRARIUMTb4b4b4,
Tb4b4b4}
Served by rngit 1.5.2 - Generated in 0.13s